home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global qtChan, gCursorReady, gMoviePlay
- gCursorReady = 1
- puppetSprite(46, 1)
- gMoviePlay = 2
- qtChan = 11
- sprite(qtChan).volume = 256
- cast("station").directToStage = 1
- preLoad(qtChan - 1)
- end
-
- on idle
- global gCursorReady
- if gCursorReady = 1 then
- cursor(200)
- checkCursors()
- set the locH of sprite 46 to the mouseH
- set the locV of sprite 46 to the mouseV
- updateStage()
- end if
- end
-
- on checkCursors
- global gMagCursor, gMoviePlay
- set the castNum of sprite 46 to the number of member "curs1"
- if rollOver(4) then
- set the castNum of sprite 46 to the number of member "hotCursor"
- end if
- if rollOver(13) then
- if gMoviePlay = 0 then
- set the castNum of sprite 46 to the number of member "hotCursor"
- else
- set the castNum of sprite 46 to the number of member "nonCursor"
- end if
- end if
- repeat with i = 20 to 22
- if rollOver(i) then
- set the castNum of sprite 46 to the number of member "hotCursor"
- end if
- end repeat
- end
-